home *** CD-ROM | disk | FTP | other *** search
/ FutureMusic 138 / Future Music Magazine FM138 August 2003 Free Soft Synch NI Carbon.iso / pc / resources / fm7pp.swf / scripts / DefineSprite_103 / frame_1 / DoAction.as
Text File  |  2002-09-30  |  813b  |  20 lines

  1. function upDateDisplay()
  2. {
  3.    presetTally += upOrDown;
  4.    if(32 < presetTally)
  5.    {
  6.       presetTally = 1;
  7.    }
  8.    else if(presetTally < 1)
  9.    {
  10.       presetTally = 32;
  11.    }
  12.    ledNums.gotoAndStop(presetTally);
  13.    presetName = presets[presetTally];
  14. }
  15. presets = new Array("","Exciting","Six-String","BEF+HPF Pad","Industrial Bells","Wurlitzerich","Chord Pad","Sparkle","MW Boost","Tronflute","Warm Atmos","Stand Alone","GrowlBrass","Punchy Percsynth","Eurosynth","Spacepark","Glassy E-Piano","D\'n\'B","Club Registers","DX-Intro","Chugg in time","Glass Strings","Soft Strings","Native Percussion","Warm FM Brass","Darkness Soundtrack","Minimal Rhythm","Science Friction","Stereo Bells","Andromedar","Axe","Sync Monster","* Ayuasca *");
  16. presetTally = 1;
  17. currTrack = 1;
  18. playing = 0;
  19. upOrDown = 0;
  20.